home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / ISATTY.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  272 b   |  14 lines

  1. /* isatty.c, from page 360 of Turbo C Bible */
  2. #include <stdio.h>
  3. #include <io.h>
  4. main ()
  5. {
  6.    if (! isatty (fileno (stdout)))
  7.    {
  8.         printf ("stdout redirected to a file\n");
  9.    }
  10.    else
  11.    {
  12.         printf ("Executing in interactive mode\n");
  13.    }
  14. }